
        /* Set the table cells to be square */
        td {
            width: 30px;
            /* Adjust this value as needed */
            height: 30px;
			padding: 0.5em;
            /* Same as width to make it square */
            text-align: center;
            /* Center text horizontally */
            vertical-align: middle;
            /* Center text vertically */
            border: 1px solid black;
            /* Keep the thin black border */
            color: white;
        }

        /* Ensure the table layout is fixed so all columns have equal width */
        table {
            margin: auto;
            border-collapse: collapse;
            /* Ensure borders do not double */
            table-layout: fixed;
            /* Ensure all columns have the same width */
            /* width: auto; /* Adjust the table width to fit content */
            margin-bottom: 2em;
        }

        .blackFont {
            color: black;
        }

		.disbanded {
			color: lightgrey;
		}
